.info-root {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f7fb;
  background-image: url('/12.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 24px;
  position: relative;
}

.info-root::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 0;
}

.info-root > * {
  position: relative;
  z-index: 1;
}
.card {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 1px solid var(--color-secondary);
}
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.title {
  margin: 6px 0 4px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}
.subtitle {
  margin: 0;
  color: #374151;
  font-size: 18px;
  letter-spacing: 0.2px;
  text-align: center;
  font-weight: 400;
}
.subtitle.muted {
  color: #21262d;
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}
.subtitle.muted .regular {
  font-weight: 400;
}
.subtitle.muted .bold {
  font-weight: 700;
}
.subtitle.muted {
  color: #21262d;
  margin-top: 4px;
}
.list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}
.item {
  display: flex;
  align-items: center; 
  background: #122b2c;
  color: #e5f3f2; 
  padding: 10px 18px;
  border-radius: 9999px;
  text-decoration: none; 
  direction: rtl;
}
.item:hover {
  background: #133232;
}
.icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  max-width: 36px;
  max-height: 36px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #163a39;
  font-size: 16px;
  flex-shrink: 0;
}
.icon.phone {
  background: #ffffff;
  color: #22c55e;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 18px;
  font-size: 18px;
}
.stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
  flex-wrap: nowrap;
  align-items: center;
}

.stores a {
  flex-shrink: 0;
}

.stores img { 
}

@media (max-width: 480px) {
  .item {
    padding: 12px 14px;
  }
  
  .stores {
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  .stores img {
    max-width: 120px;
    height: auto;
  }
}


 
.logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  width: 100%;
  max-width: 240px;
  max-height: 200px;
  margin-left: auto;
  margin-right: auto;
} 
@media (max-width: 480px) {
  .logo-wrap {
    max-width: 160px;
    max-height: 120px;
  }
}

/* Accordion Styles */
.branch-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-container {
  display: flex;
  flex-direction: column;
  transition: border-radius 0.3s ease;
  overflow: hidden;
  border-radius: 24px;
}

.accordion-container.is-open {
  border-radius: 24px;
}

.accordion-trigger-btn {
  cursor: pointer;
  border: none;
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5f3f2; 
  direction: rtl;
  transition: all 0.3s ease;
}

.accordion-trigger-btn:hover {
  opacity: 0.9;
}

.accordion-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chevron-icon {
  color: #e5f3f2;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
}

.accordion-container.is-open .chevron-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.4s ease-in-out, 
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
}

.accordion-content.is-open {
  max-height: 2000px;
  opacity: 1;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-top: 0;
  padding-bottom: 0;
}

.accordion-branches-container {
  background: #1a3f3e;
  border-radius: 16px;
  padding: 8px;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.3s ease-out;
}

.branch-link {
  padding: 14px 18px;
  color: #e5f3f2;
  text-decoration: none;
  border-bottom: 1px solid #2a4f4e;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
  border-radius: 8px;
  display: block;
}

.branch-link:last-child {
  border-bottom: none;
}

.branch-link:hover {
  background: #234948;
  transform: translateX(-2px);
}